@font-face {
  font-family: "Party Confetti";
  src: url("/WebFont/PartyConfetti-Regular.woff") format("woff"),
    url("/WebFont/PartyConfetti-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  font-family: "Party Confetti";
  font-weight: normal;
  font-style: normal;
  font-weight: 500;
  height: 100%;
  letter-spacing: 3px;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  background-color: #fff;
  box-shadow: 0 8px 6px -6px red;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  width: 50%;
}

.nav-links li {
  list-style: none;
}

.nav-links a {
  color: red;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 20px;
}

.nav-links a:hover {
  color: navy;
  transition: 0.5s;
}

.nav-links li:not(:last-child)::after {
  content: " \007C";
  color: red;
  padding-left: 50px;
}

/*DONATION BUTTON*/

.donate-btn {
  background-color: #e40b5d;
  border: 2px;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  cursor: pointer;
}

.wrapper {
  background-color: #fff;
  width: 500px;
  padding: 25px;
  margin: 25px auto 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 20vh;
}

.wrapper h2 {
  background-color: #fcfcfc;
  color: red;
  font-size: 24px;
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
  border: 1px dotted #333;
}

h4 {
  padding-bottom: 5px;
  color: red;
}

.input-group {
  margin-bottom: 8px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  padding: 5px 0;
}

.input-box {
  width: 100%;
  margin-right: 12px;
  position: relative;
}

.input-box:last-child {
  margin-right: 0;
}

.name {
  padding: 14px 10px 14px 50px;
  width: 100%;
  background-color: #fcfcfc;
  border: 1px solid #000003;
  outline: none;
  letter-spacing: 1px;
  transition: 0.3s;
  border-radius: 3px;
  color: #333;
}

.name:focus,
.dob:focus {
  box-shadow: 0 0 2px 1px rgb(73, 25, 25);
  border: red;
}

.input-box .icon {
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  color: #333;
  background-color: #f1f1f1;
  border-radius: 2px 0 0 2px;
  transition: 0.3s;
  font-size: 20px;
  pointer-events: none;
  border: 1px solid #00000033;
  border-right: none;
}

.name:focus + .icons {
  background-color: red;
  color: #f1f1f1;
  border-right: 1px solid red;
  border: none;
  transition: 1s;
}

.dob {
  width: 30%;
  padding: 14px;
  text-align: center;
  transition: 0.3s;
  outline: none;
  border: 1px solid #c0bfbf;
  border-radius: 3px;
}

.radio {
  display: none;
}

.input-box label {
  padding: 13px;
  background-color: #fcfcfc;
  display: inline;
  text-align: center;
  border: 1px solid #c0bfbf;
}

.input-box label:first-of-type {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-right: none;
}

.input-box label:last-of-type {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.radio:checked + label {
  background-color: red;
  color: #fff;
  transition: 0.5s;
}

.input-box select {
  display: inline-block;
  width: 50%;
  padding: 12px;
  background-color: #fcfcfc;
  text-align: center;
  font-size: 16px;
  border: 1px solid #c0bfbf;
  cursor: pointer;
  transition: all 0.2s ease;
}

.input-box select:focus {
  background-color: red;
  color: #fff;
  text-align: center;
}

button {
  width: 100%;
  background: transparent;
  border: none;
  background: red;
  color: #fff;
  padding: 15px;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.35s ease;
}

button:hover {
  cursor: pointer;
  background: rgb(73, 25, 25);
}

/*DONATE BUTTON MODAL*/
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.modal {
  background-color: rgba(0, 0, 0, 0.4);
}

/*MODAL CONTENT*/

.modal-content {
  background-color: white;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
  height: 50%;
}

.close {
  position: absolute;
  top: 26px;
  right: 100px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #888;
  text-decoration: none;
  cursor: pointer;
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: red;
  margin: 5px;
  transition: all 0.3s ease;
}

main {
  display: flex;
  flex-direction: column;
  margin-top: 10vh;
  color: red;
}

main > section {
  padding: 30px;
  color: red;
}

iframe {
  display: flex;
  margin: auto;
  margin-top: 7vh;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  width: 100vw;
  height: 50vh;
  pointer-events: none;
}

h2,
h3,
.fa {
  display: block;
  text-align: center;
  text-shadow: 0.2px 0.2px 0.2px #000;
  font-size: 3rem;
  line-height: 40px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: none;
  margin: 20px;
}
h3,
.fa {
  font-size: 2rem;
}
i {
  justify-content: center;
  align-items: center;
}

.contact-box {
  display: inline-flex;
  padding: 10px;
  height: 50vh;
}

.contact-info {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  height: 40vh;
  padding: 30px;
}

hr.solid {
  border-top: 3px solid red;
  text-align: center;
  width: 50px;
  margin: auto;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 8vh;
  background-color: #fff;
  box-shadow: 0 8px 6px -6px black;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

footer > .social-icons {
  color: red;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 20px;
  padding: 30px;
}

/*MEDIA QUERIES*/
/* Medium devices (landscape tablets, 768px and up) */
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .nav-links {
    position: absolute;
    right: 0;
    height: 92vh;
    top: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }
  .nav-links li {
    display: flex;
    align-items: center;
    opacity: 0;
  }
  .nav-links li:not(:last-child)::after {
    display: none;
  }

  .donate-btn {
    display: none;
  }
  .burger {
    display: block;
  }

  .service-boxes {
    flex-direction: column;
    align-items: center;
  }

  .gallary-modal-content {
    width: 100%;
  }

  nav {
    justify-content: space-between;
    padding: 0 30px;
  }
}

.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
  opacity: 0;
}

.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Extra small devices (phones, 600px and down) */

@media only screen and (max-width: 667px) {
  .nav {
    width: 100%;
    height: 12vh;
  }

  .nav-links {
    width: 100%;
    background-image: url(./images/KidsDrawings/drawing-1.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .img-logo {
    height: 11vh;
  }

  .banner-container {
    top: 0;
    margin-top: 12vh;
    padding: 30px;
  }

  .banner-text {
    text-shadow: 1.5px 1px #000000;
  }

  .banner-text h1 {
    font-size: 1.9rem;
  }

  .text2 {
    font-size: 1.6rem;
    color: palevioletred;
  }

  .banner-text p {
    font-size: 1rem;
  }

  .modal {
    padding-top: 0;
    width: 100%;
    height: 100%;
  }

  .modal-content {
    width: 100%;
    height: 100%;
  }

  .close {
    top: 5px;
    right: 10px;
    color: #000;
  }

  .numbertext {
    color: #000;
  }

  footer {
    height: 10vh;
    padding: 0;
  }

  footer .social-icons,
  h4 {
    font-size: initial;
  }

  .image-link-container h2 {
    font-size: 1.5rem;
    margin-top: 20px;
  }

  h3 {
    font-size: 1.17rem;
  }

  .image-link {
    width: 80%;
    height: 100%;
    margin-bottom: 10px;
  }

  .footer-info-container {
    flex-direction: column;
    margin-bottom: 12vh;
    bottom: 0;
  }

  .footer-section {
    padding: 0;
  }

  .footer-info {
    width: 100%;
    height: 100%;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */

@media only screen and (min-width: 600px) {
}

/* Extra large devices (large laptops and desktops, 1200px and up) */

@media only screen and (min-width: 1024) {
}
